home *** CD-ROM | disk | FTP | other *** search
/ IRIX 5.3 for Indy R4400 / IRIX 5.3 for Indy R4400 175MHz.img / dist / eoe2.idb / usr / lib / perl / make.libs.z / make.libs
Text File  |  1995-02-28  |  414b  |  25 lines

  1. #!/sbin/sh
  2. #
  3. #  Alright, compute them perl libs
  4.  
  5. chdir $rbase/usr/include
  6.  
  7. # sys and netinet are always going to be there, net and arpa maybe not.
  8.  
  9. chroot $rbase/ /usr/sbin/h2ph *.h sys/*.h netinet/*.h > /dev/null
  10.  
  11. if [ -d net ]
  12.   then
  13.   chroot $rbase/ /usr/sbin/h2ph net/*.h > /dev/null
  14. fi
  15.  
  16. if [ -d arpa ]
  17.   then
  18.   chroot $rbase/ /usr/sbin/h2ph arpa/*.h > /dev/null
  19. fi
  20.  
  21. # Poof!
  22.  
  23. rm $rbase/usr/lib/perl/make.libs
  24.  
  25.